home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / examples / demo / demotext / gridding.txt < prev    next >
Text File  |  1997-07-08  |  2KB  |  71 lines

  1.  
  2.         
  3.            WELCOME TO THE GRID DEMO
  4.  
  5.  
  6.    This demo shows the gridding of unevenly spaced data
  7.    and various interpolation methods.
  8.  
  9.    A random set of data in 3D space is generated. The 
  10.    Delauney triangulation method connects the data, 
  11.    forming triangles. The triangulated data is then
  12.    interpolated to a location in a 3D grid. IDL offers
  13.    several interpolation techniques. 
  14.  
  15.  
  16.    MENU OPTIONS
  17.    ------------
  18.  
  19.    File Menu:
  20.       Select "Quit" to exit the Grid Demo and return 
  21.       to the IDL Demo main screen.
  22.  
  23.    Data Menu:
  24.        Select "Generate new data" to create a new set 
  25.        of random data points (X, Y, Z).
  26.  
  27.    Help Menu:
  28.        Select "About interpolation and gridding" for
  29.        information about the Grid Demo.
  30.  
  31.  
  32.    DROPLIST FEATURE
  33.    ----------------
  34.  
  35.    <<X-Y point locations>>
  36.       Shows the X-Y locations of randomly-generated data 
  37.       points in 3D space.
  38.  
  39.    <<Delauney triangulation>>
  40.       The random data points are connected using the 
  41.       Delauney triangulation method.
  42.  
  43.    <<Bilinear interpolation>>
  44.       After the triangulation is performed, the data is 
  45.       interpolated linearly, generating a series of flat, 
  46.       interconnected surfaces. Data points located outside 
  47.       the outer edges of the triangulated surface are not 
  48.       interpolated. These points are assigned values 
  49.       of -20.
  50.  
  51.    <<Quintic interpolation>>
  52.       After the triangulation is performed, the data is 
  53.       interpolated using the quintic method. Data points 
  54.       located outside the outer edges of the triangulated 
  55.       surface are not interpolated. These points are 
  56.       assigned values of -20.
  57.  
  58.    <<Smooth interpolation>>
  59.       After the triangulation is performed, the data is 
  60.       interpolated using the 'Smooth' method, which 
  61.       computes a boxcar average, given a width. The result
  62.       is a smooth continuous surface, without a skirt. Data 
  63.       outside the triangulated surface can be extrapolated.
  64.  
  65.    <<Kriging>>
  66.       Also known as 'Optimal interpolation', this method 
  67.       uses an exponential scheme. It is widely accepted by 
  68.       the scientific community. The result is a smooth 
  69.       surface. Data outside the triangulated surface can be 
  70.       extrapolated.
  71.